home *** CD-ROM | disk | FTP | other *** search
/ Champak 139 / (Vol 139) Sep 24 2011.iso / Games / xtreme_tugboating.swf / scripts / DefineSprite_100 / frame_1 / DoAction.as
Text File  |  2011-09-24  |  201b  |  14 lines

  1. stop();
  2. timer = random(150);
  3. onEnterFrame = function()
  4. {
  5.    timer--;
  6.    if(timer <= 0)
  7.    {
  8.       play();
  9.       onEnterFrame = null;
  10.    }
  11. };
  12. _xscale = random(100) + 50;
  13. _yscale = _xscale;
  14.